home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
scanmultiple.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
681b
|
42 lines
/*
* $VER: ScanMultiple 2.0.0 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Updated for ImageFX 2.0.
*
* Scan multiple monochrome pages from an Epson ES800C with a
* document feeder attachment. Files as saved as individual
* 2-color ILBM's in RAM:.
*
*/
OPTIONS RESULTS
SetRender Foreign
IF rc ~= 0 THEN EXIT
Render Mode Hires Lace
Render Colors 2
pagenum = 1
DO FOREVER
Message 'Scanning Page' pagenum
/* requires 2.0 */
Scanner DetailScan Mono Dpi 100 ADF
IF rc ~= 0 THEN LEAVE
Render Go
SaveRenderedAs ILBM 'ram:page'||RIGHT('000'||pagenum,4)
pagenum = pagenum + 1
END
EXIT